home *** CD-ROM | disk | FTP | other *** search
/ PCGUIA 2010 Software/Programs / PCGuia_programas.iso / Software / Utils / Universal Viewer / UniversalViewer.exe / Viewer.exe / 0 / RCDATA / TFORMVIEWFINDTEXT / TFORMVIEWFINDTEXT.txt
Encoding:
Text File  |  2009-10-23  |  3.1 KB  |  169 lines

  1. object FormViewFindText: TFormViewFindText
  2.   Left = 257
  3.   Top = 211
  4.   ActiveControl = edText
  5.   BorderStyle = bsDialog
  6.   Caption = 'Search'
  7.   ClientHeight = 234
  8.   ClientWidth = 313
  9.   Color = clBtnFace
  10.   Font.Charset = DEFAULT_CHARSET
  11.   Font.Color = clWindowText
  12.   Font.Height = -11
  13.   Font.Name = 'Tahoma'
  14.   Font.Style = []
  15.   OldCreateOrder = False
  16.   Position = poScreenCenter
  17.   OnCreate = FormCreate
  18.   OnShow = FormShow
  19.   PixelsPerInch = 96
  20.   TextHeight = 13
  21.   object labFind: TLabel
  22.     Left = 8
  23.     Top = 12
  24.     Width = 60
  25.     Height = 13
  26.     Caption = 'Text to find:'
  27.     FocusControl = edText
  28.   end
  29.   object btnOk: TButton
  30.     Left = 28
  31.     Top = 204
  32.     Width = 80
  33.     Height = 23
  34.     Caption = 'Find'
  35.     Default = True
  36.     ModalResult = 1
  37.     TabOrder = 4
  38.   end
  39.   object btnCancel: TButton
  40.     Left = 204
  41.     Top = 204
  42.     Width = 80
  43.     Height = 23
  44.     Cancel = True
  45.     Caption = 'Cancel'
  46.     ModalResult = 2
  47.     TabOrder = 6
  48.   end
  49.   object edText: TTntComboBox
  50.     Left = 80
  51.     Top = 8
  52.     Width = 225
  53.     Height = 21
  54.     ItemHeight = 13
  55.     TabOrder = 0
  56.   end
  57.   object btnHelp: TButton
  58.     Left = 116
  59.     Top = 204
  60.     Width = 80
  61.     Height = 23
  62.     Caption = 'Help'
  63.     TabOrder = 5
  64.     OnClick = btnHelpClick
  65.   end
  66.   object boxOptions: TGroupBox
  67.     Left = 8
  68.     Top = 32
  69.     Width = 297
  70.     Height = 105
  71.     Caption = 'Options'
  72.     TabOrder = 1
  73.     object chkWords: TCheckBox
  74.       Left = 8
  75.       Top = 16
  76.       Width = 284
  77.       Height = 17
  78.       Caption = '&Whole words only'
  79.       TabOrder = 0
  80.     end
  81.     object chkCase: TCheckBox
  82.       Left = 8
  83.       Top = 32
  84.       Width = 284
  85.       Height = 17
  86.       Caption = '&Case sensitive'
  87.       TabOrder = 1
  88.     end
  89.     object chkHex: TCheckBox
  90.       Left = 8
  91.       Top = 48
  92.       Width = 284
  93.       Height = 17
  94.       Caption = 'Hex string'
  95.       TabOrder = 2
  96.       OnClick = chkHexClick
  97.     end
  98.     object chkRegex: TCheckBox
  99.       Left = 8
  100.       Top = 64
  101.       Width = 284
  102.       Height = 17
  103.       Caption = 'RegEx'
  104.       TabOrder = 3
  105.       OnClick = chkRegexClick
  106.     end
  107.     object chkMLine: TCheckBox
  108.       Left = 8
  109.       Top = 80
  110.       Width = 281
  111.       Height = 17
  112.       Caption = 'Multiline regex'
  113.       TabOrder = 4
  114.     end
  115.   end
  116.   object boxDirection: TGroupBox
  117.     Left = 8
  118.     Top = 140
  119.     Width = 137
  120.     Height = 56
  121.     Caption = 'Direction'
  122.     TabOrder = 2
  123.     object chkDirForward: TRadioButton
  124.       Left = 8
  125.       Top = 16
  126.       Width = 125
  127.       Height = 17
  128.       Caption = 'Forward'
  129.       Checked = True
  130.       TabOrder = 0
  131.       TabStop = True
  132.     end
  133.     object chkDirBackward: TRadioButton
  134.       Left = 8
  135.       Top = 32
  136.       Width = 125
  137.       Height = 17
  138.       Caption = 'Backward'
  139.       TabOrder = 1
  140.     end
  141.   end
  142.   object boxOrigin: TGroupBox
  143.     Left = 152
  144.     Top = 140
  145.     Width = 153
  146.     Height = 56
  147.     Caption = 'Origin'
  148.     TabOrder = 3
  149.     object chkOriginCursor: TRadioButton
  150.       Left = 8
  151.       Top = 16
  152.       Width = 142
  153.       Height = 17
  154.       Caption = 'From cursor'
  155.       TabOrder = 0
  156.     end
  157.     object chkOriginEntire: TRadioButton
  158.       Left = 8
  159.       Top = 32
  160.       Width = 142
  161.       Height = 17
  162.       Caption = 'Entire file'
  163.       Checked = True
  164.       TabOrder = 1
  165.       TabStop = True
  166.     end
  167.   end
  168. end
  169.